var crypto/rsa.bigOne

8 uses

	crypto/rsa (current package)
		rsa.go#L61: var bigOne = big.NewInt(1)
		rsa.go#L458: 		n := new(big.Int).Set(bigOne)
		rsa.go#L459: 		totient := new(big.Int).Set(bigOne)
		rsa.go#L463: 			pminus1.Sub(prime, bigOne)
		rsa.go#L587: 		if prime.Cmp(bigOne) <= 0 {
		rsa.go#L592: 	precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne)
		rsa.go#L595: 	precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
		rsa.go#L609: 		values.Exp = new(big.Int).Sub(prime, bigOne)